home *** CD-ROM | disk | FTP | other *** search
- global gPlanNum, gHintOn
-
- on toggleHint
- if gHintOn then
- clearHint()
- else
- showHint()
- end if
- end
-
- on showHint
- set vHintSprite to 11
- set the member of sprite vHintSprite to member ("hint" & string(gPlanNum))
- set the loc of sprite vHintSprite to point(320, 240)
- set gHintOn to 1
- end
-
- on clearHint
- set vHintSprite to 11
- set the loc of sprite vHintSprite to point(-2222, -2222)
- set gHintOn to 0
- end
-